home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-02-19 | 268 b | 14 lines | [TEXT/CWIE] |
-
- #include "UniqueID.h"
- #include "PseudoRandom.h"
-
- Int64 GenerateUniqueID()
- {
- //
- // In general this is insufficient, but it will get us up and running.
- // Should be good enough for our document ID needs.
- //
- return Int64(PseudoRandomLong(), PseudoRandomLong());
- }
-
-